home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Network PC
/
Network PC.iso
/
amiga utilities
/
applications
/
accounts
/
easycalc2.0f
/
easyrexx
/
unlock.erex
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-11-20
|
260 b
|
19 lines
/* EasyCalc 2.0 Arexx Script */
options results
'getresponse "This script will unlock all cells." "_Begin"'
getsheetwidth
maxx = result
getsheetheight
maxy = result
do x = 0 for maxx+1
'showmessage' x
do y = 0 to maxy+1
'setlock' x y 0
end
end